home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- #
- # Umwandlung von Code-Seite 850 (MessyDOS) nach
- # NeXTSTEP Encoding
- #
- # Harald Schlangmann 1992
- #
- # ue ae oe Ae Oe Ue sz
- #
-
- if [ "$1" = "" ]
- then
- tr '\201\204\224\216\231\232\341' '\366\331\360\205\226\232\373' | tr -d '\015\032'
- else
- cat $1 | tr '\201\204\224\216\231\232\341' '\366\331\360\205\226\232\373' | tr -d '\015\032'
- fi
-